home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00544_Script_9D Conditional Checker < prev    next >
Text File  |  1995-05-21  |  513b  |  13 lines

  1. on exitFrame
  2.   global calls, GINTEGRITY, GMONEY
  3.   
  4.   Unloadcast
  5.   
  6.   if gIntegrity <= 0 and gMoney <= 0 then put "LILM" into calls
  7.   if gIntegrity <= 0 and gMoney >= 1 and gMoney <= 30000 then put "LI" into calls
  8.   if gIntegrity <= 0 and gMoney >= 30001 then put "LIHM" into calls
  9.   if gIntegrity >= 1 and gMoney <= 0 then put "HILM" into calls
  10.   if gIntegrity >= 1 and gMoney >= 1 and gMoney <= 30000 then put "HI" into calls
  11.   if gIntegrity >= 1 and gMoney >= 30001 then put "HIHM" into calls
  12.   
  13. end